home *** CD-ROM | disk | FTP | other *** search
- x,y = BEGIN (arg[1].."1"), BEGIN (arg[1].."2")
- x:begin_page(A5.width,A5.height)
- y:begin_page(A5.width,A5.height)
- x.font = x:findfont("Helvetica","host",0)
- y.font = y:findfont("Courier","host",0)
- x:setfont(x.font,20)
- y:setfont(y.font,20)
- x:show_xy("This is page1.",10,A5.height*0.9)
- y:show_xy("This is page2.",10,A5.height*0.9)
- x:continue_text("Click red * below")
- y:END()
- x:continue_text("to go to page2.")
- x:setcolor("both","rgb",1,0,0,0) -- red
- x:show_boxed("*",10,A5.height*0.7,30,20,"center","")
- x:add_launchlink(10,A5.height*0.7,40,A5.height*0.8,"page2")
- x:END ()
-
-